/* 側邊欄組件樣式 */

/* 側邊欄基本樣式 */
.sidebar-section {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffcc00;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e60000;
}

/* 搜索框 */
.search-form {
    display: flex;
    margin-bottom: 10px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px 0 0 20px;
    background-color: #252525;
    color: #e0e0e0;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    background-color: #333;
}

.search-button {
    padding: 10px 15px;
    border: none;
    border-radius: 0 20px 20px 0;
    background-color: #e60000;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #cc0000;
}

/* 分類列表 */
.category-list {
    list-style: none;
}

.category-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #252525;
    padding-bottom: 10px;
}

.category-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #ffcc00;
}

.category-count {
    background-color: #252525;
    color: #b0b0b0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.category-link:hover .category-count {
    background-color: #333;
    color: #ffcc00;
}

/* 熱門文章 */
.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-article {
    display: flex;
    gap: 10px;
}

.popular-article-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-article-content {
    flex: 1;
}

.popular-article-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popular-article-title a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-article-title a:hover {
    color: #ffcc00;
}

.popular-article-meta {
    font-size: 12px;
    color: #b0b0b0;
}

/* 標籤雲 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #252525;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #333;
    color: #ffcc00;
}

/* 廣告區塊 */
.sidebar-ad {
    margin-bottom: 10px;
}

.sidebar-ad img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.sidebar-ad img:hover {
    transform: scale(1.02);
}

/* 訂閱區塊 */
.subscribe-form {
    margin-top: 15px;
}

.subscribe-input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: #252525;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 10px;
}

.subscribe-input:focus {
    outline: none;
    background-color: #333;
}

.subscribe-button {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: #ffcc00;
    color: #121212;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}